html {
  font-size: 62.5%;
  width: 100%;
}
.owl-carousel.owl-drag .owl-item {
  cursor: grab;
}

html,
body {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.news .news_cont img {
  max-width: 100%;
}
@media only screen and (min-width: 375px) {
  html {
    font-size: 73.2% !important;
  }
}

@media only screen and (min-width: 414px) {
  html {
    font-size: 80.8% !important;
  }
}

@media only screen and (min-width: 481px) {
  html {
    font-size: 94% !important;
  }
}

@media only screen and (min-width: 561px) {
  html {
    font-size: 109% !important;
  }
}

@media only screen and (min-width: 641px) {
  html {
    font-size: 125% !important;
  }
}
@media only screen and (max-width: 1199px) {
  #contact .container {
    max-width: 100%;
  }
}

@keyframes infinite-move {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes infinite-move-y30 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes infinite-move-x10 {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* 
<div class="heading-divider"></div>
.heading-divider:after {
  content: "";
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #fff;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: infinite-move;
  animation-name: infinite-move;
}
.heading-divider {
  display: inline-block;
  position: relative;
  height: 5px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #3d9163;
  width: 90px;
  overflow: hidden;
}

@-webkit-keyframes infinite-move {
  from {
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -ms-transform: translateX(88px);
    transform: translateX(88px);
  }
}
@keyframes infinite-move {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(88px);
    transform: translateX(88px);
  }
} */

/* @keyframes rotated {
  0% {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
100% {
  -webkit-transform: rotate(
360deg);
  transform: rotate(
360deg);
}
}
.indexSolution .partneritem i::after{
content: "";
background: url("./common/img/services-ball-shape.png");
opacity: 0.7;
top: 0;
left: 0;
bottom: 0;
right: 0;
position: absolute;
z-index: -1;   
  animation: rotated 20s infinite linear;
} */

.mainTitle {
  font-size: 30px;
}
body,
html {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-family: "微软雅黑";
  color: #000;
  -webkit-overflow-scrolling: touch;
  /* touch滚动回弹 */
}

/*改写滚动条为全部透明*/

::-webkit-scrollbar
/*整体部分*/ {
  width: 0;
  height: 0;
}

::-webkit-scrollbar-track
/*滑动轨道*/ {
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb
/*滑块*/ {
  background: rgba(0, 0, 0, 0);
}

::-webkit-scrollbar-thumb:hover
/*滑块效果*/ {
  background: rgba(0, 0, 0, 0);
}

/* /透明度设置为0，去掉点击链接和文本框对象时默认的灰色半透明覆盖层(iOS)或者虚框(Android) */

input,
a,
textarea {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

ul {
  list-style-type: none;
}

ul,
li,
img,
p {
  margin: 0;
  padding: 0;
}

input {
  margin: 0;
  padding: 0;
  border: 0;
  outline: none;
}

li {
  list-style: none;
}

img {
  border: 0;
  vertical-align: middle;
}

.f-l {
  float: left;
}

.f-r {
  float: right;
}

.dis-b {
  display: block;
}

.dis-n {
  display: none;
}
.dis-in {
  display: inline-block;
}
button {
  padding: 0;
}

/* 重置链接a标签 */

a {
  text-decoration: none;
  outline: none;
}

a:active,
a:hover {
  text-decoration: none;
}

.cursor {
  cursor: pointer;
}

.relative {
  position: relative;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.clear {
  clear: both;
}

.white {
  color: #fff;
}

.text-hide-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.text-hide-2 {
  /* 超过两行显示省略号 */
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/*万能清除浮动*/

.clearfloat:after {
  display: block;
  clear: both;
  content: "";
  visibility: hidden;
  height: 0;
}

.clearfloat {
  zoom: 1;
}

/* 头部 */
.top_bg,
.nav_box {
  width: 100%;
}
.nav_box {
  min-width: 1200px;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0px 0px 5px 0px rgba(50, 50, 50, 0.11);
}
.nav {
  max-width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  line-height: 100px;
  height: 100px;
}
.logo {
  /* width: 140px;
  height: 35px; */
  width: 155px;
    height: 40px;
  margin-top: 30px;
  line-height: 100px;
  /* background-color: #2cb8d4; */
}
.phone-logo {
  width: 184px;
  height: 44px;
  margin: 28px 0 0 50px;
}
.target {
  color: #2cb8d4;
  border-bottom: 2px solid #2cb8d4;
}
.nav a {
  display: block;
  width: 86px;
  text-align: center;
  line-height: 98px;
  font-size: 18px;
}
a {
  color: #222;
}
.nav a:hover {
  color: #2cb8d4;
}

.login {
  width: 63px;
  height: 30px;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  margin-top: 35px;
  color: #2cb8d4;
  font-family: Microsoft YaHei;
  border: 1px solid rgba(51, 128, 255, 1);
  border-radius: 15px;
}

/* 底部 */
#contact {
  padding-bottom: 10px;
  /* margin-top: 70px; */
  border-top: 2px solid #2cb8d447;
  box-shadow: 0px 0px 14px rgb(44 184 212 / 27%);
  padding-top: 70px;
}
#contact ul li img {
  width: 190px;
  height: 50px;
}
ul li {
  list-style: none;
}

#contact ul {
  display: flex;
  margin-bottom: 5;
  flex-wrap: wrap;
}
#contact ul li {
  width: 190px;
  margin: 10px 20px;
  color: #999999;
  font-size: 14px;
}
.lineHZHB {
  align-items: center;
  border-bottom: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  margin: 20px 0 0px;
  padding: 20px 0px 10px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
}
/* .lineHZHB span{
  min-width: 80px;
  width: 80px;
} */
#contact img {
  width: 150px;
  height: 150px;
}
#contact p {
  text-align: left;
  word-break: break-all;
  color: #333333;
}

#contact .info p {
  padding: 0 0 20px 35px;
  line-height: 24px;
}
#contact p {
  text-align: left;
  word-break: break-all;
  color: #333333;
}
#contact .info i {
  font-size: 18px;
  margin-top: 5px;
  margin-left: 6px;
  color: #2cb8d4;
  float: left;
}
#contact h3 {
  text-align: left;
  font-size: 25px;
  line-height: 43px;
}
#contact .yqlj p {
  padding: 0px;
}
#contact .section-title {
  font-size: 30px;
  margin-bottom: 50px;
}
.footercopyright {
  text-align: center;
}
.footercopyright span {
  font-weight: bold;
}
.letterSpacing4 {
  letter-spacing: 4px;
}
p {
  color: #666;
  margin: 0;
  line-height: 27px;
  font-weight: 400;
  font-size: 16px;
}
/* 居中 */
.commonCenter {
  overflow: hidden;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.fixed {
  width: 50px;
  height: 90px;
  position: fixed;
  right: 50px;
  bottom: 20px;
  z-index: 1000;
}

.fixed img {
  cursor: pointer;
  width: 46px;
  height: 43px;
  border-radius: 2px;
}

.QrCode {
  cursor: pointer;
  display: none;
  width: 210px;
  height: 247px;
  position: fixed;
  right: 120px;
  bottom: 75px;
  z-index: 1000;
  text-align: center;
  box-shadow: 0px 0px 5px 0px rgba(130, 130, 130, 1);
}
.QrCode::after {
  position: absolute;
  content: "";
  bottom: 4px;
  right: -24px;
  width: 0;
  height: 0;
  border-width: 12px;
  border-style: solid;
  border-color: transparent transparent transparent #eaf0ff;
}

/* 导航菜单 */
.nav-menu > li {
  float: left;
}
.f-tel {
  display: block;
  height: 100%;
  line-height: normal;
  margin-right: auto;
  width: 184px;
}
.nav-menu li {
  position: relative;
  white-space: nowrap;
}
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-menu a {
  padding: 36px 28px 35px 28px;
  text-decoration: none;
  display: inline-block;
  color: #333;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 18px;
  outline: none;
}
#header {
  box-shadow: 0px 0px 5px 0px rgb(50 50 50 / 11%);
  height: 100px;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  position: fixed;
  width: 100%;
  background: #fff;
  z-index: 99;
  top: 0px;
  left: 0px;
}

.clearfix {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.logo {
  width: 140px;
  height: 35px;
  margin-top: 0px;
  line-height: 100px;
  /* background-color: #2cb8d4; */
}
.phone-logo {
  width: 184px;
  height: 44px;
  margin: 0px 0 0 50px;
}

#mobile-nav .target {
  color: #2cb8d4;
  border-bottom: 2px solid #2cb8d4;
}
.nav-menu .target {
  color: #2cb8d4;
  border-bottom: 2px solid #2cb8d4;
}

/* 移动导航切换 */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 4px;
  z-index: 999;
  margin: 8px 10px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

/* 移动导航样式 */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

#mobile-nav ul li a:hover {
  color: #fff;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #2cb8d4;
}

#mobile-nav ul .menu-item-active {
  color: #2cb8d4;
}

/* 导航内容 */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}
.banner {
  width: 100%;
  padding-top: 100px;
}

.banner img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center;
}
.swiper-container {
  margin-top: 100px;
}
.btn-ghost {
  border: 3px solid #fff;
  background-color: transparent;
  border-radius: 15px;
  font-size: 1rem;
  line-height: 1.5;
  color: #fff;
}
.block {
  color: #fff;
  overflow: hidden;
  padding-top: 65px;
}
#contact_wx {
  position: absolute;
  left: 10%;
  z-index: 2999;
  display: none;
  background: #ffffff;
  margin-top: 20px;
  padding-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 3px 4px 2px;
}
.contactWMDetails .contaiterBlock .title .titleTwo {
  font-size: 15px;
}



/* .marquee{width:8000%;height:46px}
.wave-box{position:relative;height:46px;background:#fff}
.marquee-box{overflow:hidden;width:100%;position:absolute;left:0;top:0}
.wave-list-box{float:left}
.wave-list-box ul{float:left;height:46px;overflow:hidden;zoom:1}
.wave-list-box ul li{height:46px;width:100%;float:left;line-height:23px;list-style:none} */

@media (max-width: 1199px) {
  .f-tel {
    display: none;
  }
  #nav-menu-container {
    margin-left: auto;
  }
}
@media (min-width: 1250px) {
  .container {
    max-width: 1250px;
  }
}
@media (max-width: 992px) {
  #contact_wx {
    width: 260px;
  }
  #mobile-nav-toggle {
    display: inline;
  }
  #nav-menu-container {
    display: none;
  }

  #header {
    height: 60px;
  }
  .swiper-container {
    margin-top: 60px;
  }

  #contact h3 {
    font-size: 18px;
    line-height: 30px;
  }
  #contact .contact_title_block p {
    text-indent: 2em;
  }
  .fixed {
    right: 10px;
  }
  .QrCode {
    right: 70px;
  }
  body .pt-110,
  body .py-110 {
    padding-top: 40px;
  }
}
.contactWMDetails {
  background-color: #ffffff;
  margin-top: 160px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  body .row {
    margin-right: 0px;
    margin-left: 0px;
  }
  .wxgzh {
    margin-left: 35px;
  }
  .lxfs {
    margin-top: 30px;
  }
  #contact .yqlj p {
    padding: 0 0 20px 35px;
  }
  .banner {
    padding-top: 60px;
  }

  .contactWMDetails .contaiterBlock .title .titleTwo {
    display: none;
  }
  .contactWMDetails {
    background-color: #ffffff;
    margin-top: 100px;
    margin-bottom: 50px;
  }
  #contact .section-title {
    font-size: 25px;
    margin-bottom: 30px;
  }
  /* .lineHZHB {
    flex-wrap: wrap;
  }
  .lineHZHB span{
    min-width: 80px;
    width: 80px;
  } */
  #contact ul li {
    width: 50%;
    margin: 0;
  }
  #contact ul li img {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #contact_wx {
    width: 80%;
  }
}
